home *** CD-ROM | disk | FTP | other *** search
- submitReg.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- play();
- };
- close.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- fscommand("quit");
- };
- back.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- _level0.gotoAndStop("startScreen");
- };
- back.onRollOver = function()
- {
- getUrl("event: changeCursor", "");
- };
- back.onRollOut = function()
- {
- getUrl("event: restoreCursor", "");
- };
- start.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- movConrol = null;
- _level0.gotoAndStop("terms");
- };
- start.onRollOver = function()
- {
- getUrl("event: changeCursor", "");
- };
- start.onRollOut = function()
- {
- getUrl("event: restoreCursor", "");
- };
- ff.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- goMov = movie._currentframe + 100;
- if(goMov >= movie._totalframes)
- {
- movie.gotoAndStop(movie._totalframes);
- }
- else
- {
- movie.gotoAndPlay(goMov);
- }
- stopAllSounds();
- movie.track.gotoAndPlay(1);
- gotoAndPlay(13);
- };
- ff.onRollOver = function()
- {
- getUrl("event: changeCursor", "");
- };
- ff.onRollOut = function()
- {
- getUrl("event: restoreCursor", "");
- };
- rw.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- goMov = movie._currentframe - 100;
- if(goMov <= 1)
- {
- movie.gotoAndPlay(1);
- }
- else
- {
- movie.gotoAndPlay(goMov);
- }
- stopAllSounds();
- movie.track.gotoAndPlay(1);
- gotoAndPlay(13);
- };
- rw.onRollOver = function()
- {
- getUrl("event: changeCursor", "");
- };
- rw.onRollOut = function()
- {
- getUrl("event: restoreCursor", "");
- };
- btnpause.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- movConrol = null;
- movie.stop();
- gotoAndStop(15);
- stopAllSounds();
- };
- btnpause.onRollOver = function()
- {
- getUrl("event: changeCursor", "");
- };
- btnpause.onRollOut = function()
- {
- getUrl("event: restoreCursor", "");
- };
- end.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- movConrol = null;
- movie.gotoAndStop(movie._totalframes);
- stopAllSounds();
- gotoAndPlay(13);
- };
- end.onRollOver = function()
- {
- getUrl("event: changeCursor", "");
- };
- end.onRollOut = function()
- {
- getUrl("event: restoreCursor", "");
- };
- begin.onRelease = function()
- {
- getUrl("event: restoreCursor", "");
- movConrol = null;
- movie.gotoAndPlay(1);
- stopAllSounds();
- gotoAndPlay(13);
- };
- begin.onRollOver = function()
- {
- getUrl("event: changeCursor", "");
- };
- begin.onRollOut = function()
- {
- getUrl("event: restoreCursor", "");
- };
- stop();
-